home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 April / Designer's Club 1998 April.iso / pc / Ideasrc / PROTECT.DIR / 00020_Script_go the frame < prev    next >
Text File  |  1998-03-13  |  332b  |  20 lines

  1. on exitFrame
  2.   
  3.   go the frame
  4.   
  5.   repeat with n=9 to 13
  6.     if rollover(n) then
  7.       set the visible of sprite n to false
  8.       updatestage
  9.     end if
  10.   end repeat
  11.   
  12.   repeat with n=9 to 13
  13.     if not rollover(n) then
  14.       set the visible of sprite n to true
  15.       updatestage
  16.     end if
  17.   end repeat
  18.   
  19. end
  20.